summaryrefslogtreecommitdiff
path: root/src/pages/shop/product/[slug].js
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/shop/product/[slug].js')
-rw-r--r--src/pages/shop/product/[slug].js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pages/shop/product/[slug].js b/src/pages/shop/product/[slug].js
index 2b54a1e0..5e0c8853 100644
--- a/src/pages/shop/product/[slug].js
+++ b/src/pages/shop/product/[slug].js
@@ -11,6 +11,7 @@ import ProductSlider from "../../../components/product/ProductSlider";
import Layout from "../../../components/Layout";
import { createOrUpdateItemCart } from "../../../helpers/cart";
import toast from "react-hot-toast";
+import Footer from "../../../components/Footer";
export async function getServerSideProps( context ) {
const { slug } = context.query;
@@ -195,6 +196,8 @@ export default function ProductDetail({ product }) {
<ProductSlider products={similarProducts}/>
</div>
</div>
+
+ <Footer />
</Layout>
</>
);